Using a TrueType Font in xTemplates

TrueType fonts can be used in xTemplates by using an empty FontSet for any given Composition. When using an empty FontSet, the FaceName given in the Font element of your composition will be matched up to the name given in the fonts.xml file. For example, if I wanted to use the Comic font, my Composition would look something like this:

<Template>
.
.
<Composition>
<CompositionInfo
UnitsPerInch="1000000"
Width="8500000"
Height="11000000"
FontSet=""
FuidBase="10">
<Luid>xxx<Luid>
<CompositionInfo>
<Regions>
<Region>
<Text
AreaStartOffset="0"
AreaEndOffset="0"
TextColor="0"
ExtLeading="0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Justification="All"
FontIDRef="1"
Orientation="0"
TabSpace="500000">
<Area
Left="0"
Top="0"
Right="8000000"
Bottom="2000000"/>
<TextString>Hello World!</TextString>
</Text>
</Region>
</Regions>
<Fonts>
<Font
FontID="1"
CPointSize="1200"
Weight="400"
Style="0"
FaceName="Comic"/>
</Fonts>
</Composition>
.
.
</Template>